home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
basic
/
iqb9103.zip
/
ISSHARE.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1991-03-08
|
302 b
|
17 lines
' $INCLUDE: 'QB.BI'
DIM Regs AS RegType
Regs.AX = &H1000
CALL Interrupt (&H2F, Regs, Regs)
AL = Regs.AX MOD 256
SELECT CASE AL
CASE 0
PRINT "SHARE is not loaded."
CASE 255
Print "SHARE is loaded."
CASE ELSE
PRINT "I am confused. AL = ";AL
END SELECT
END